為了可以得到更多的畫面,這邊透過更改styles檔來隱藏標題列(Actino Bar)
在res>valuse資料夾的styles檔案,加入windowNoTitle和windowActionBar兩個項目,並把值設為true和false,代表不顯示標題和標題列
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- 隱藏標題和標題列 -->
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
</resources>
如果要隱藏StatusBar達到全螢幕效果的話,可以加入windowFullscreen
<item name="android:windowFullscreen">true</item>
WebView是可以顯示網頁內容的元件,就像是直接在APP的畫面中加入一個瀏覽器
<WebView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent" android:id="@+id/webView"/>
使用.loadUrl()
可以設定WebView顯示網頁的網址
webView.loadUrl("https://ithelp.ithome.com.tw/articles/10216979")